home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 75 / XENIATGM75.iso / Shareware / X-Setup 5.0 / _SETUP.1 / XQ NoScape Clear Options.xpl < prev    next >
Text File  |  1998-10-10  |  1KB  |  37 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Netscape Navigator"
  5. "NAME"="Clear URLs"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Clear typed URLs"
  8. "DESCRIPTION 1"="If you do not want that other people can see the URLs you have typed, click the first button."
  9. "DESCRIPTION 2"="This might not work with Communicator (Navigator 4.0) and above."
  10. "AUTHOR"="Xteq Systems"
  11. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  12. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  13. "COMMENT 2"="Version 1.1"
  14.  
  15.  
  16. sP="HKCU\Software\Netscape\Netscape Navigator\URL History\"
  17. Sub Plugin_Initialize 
  18.  if RegPathExists(sP)=false then
  19.   Disable
  20.  End if
  21. End Sub
  22.  
  23. Sub Plugin_CheckData(ElementIndex)
  24. End Sub
  25.  
  26. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  27.  i=RegEnumValues(sp)
  28.  for l=1 to i
  29.   Call RegDeleteValue(sp & RegEnumElement(l))
  30.  Next
  31.  
  32.  Call MsgInformation("Cleared")
  33. End Sub
  34.  
  35. Sub Plugin_Terminate 
  36. End Sub
  37.